home *** CD-ROM | disk | FTP | other *** search
- #
- # This script written by Scott Shebby (12/2003)
- #
- # See the Nessus Scripts License for details
- #
- # Ref:
- # From: "Ruso, Anthony" <aruso@positron.qc.ca>
- # To: Penetration Testers <PEN-TEST@SECURITYFOCUS.COM>
- # Subject: Sgdynamo.exe Script -- Path Disclosure
- # Date: Wed, 16 May 2001 11:55:32 -0400
- #
- #
- # Changes by rd :
- # - Description
- # - Support for multiple CGI directories
- # - HTTP KeepAlive support
- # - egrep() instead of eregmatch()
- #
-
-
- if(description)
- {
- script_id(11954);
- script_version ("$Revision: 1.4 $");
- name["english"] = "sgdynamo_path";
- script_name(english:name["english"]);
- desc["english"] = "
- The CGI 'sgdynamo.exe' can be tricked into giving the physical path to the
- remote web root.
-
- This information may be useful to an attacker who can use it to make better
- attacks against the remote server.
-
- Solution : None at this time
- Risk factor : Low";
- script_description(english:desc["english"]);
-
- summary["english"] = "sgdynamo.exe Path Disclosure";
- script_summary(english:summary["english"]);
-
- script_category(ACT_GATHER_INFO);
-
- script_copyright(english:"This script is Copyright (C) 2003 Scott Shebby");
- family["english"] = "CGI abuses";
- family["francais"] = "Abus de CGI";
- script_family(english:family["english"], francais:family["francais"]);
- script_dependencie("find_service.nes", "http_version.nasl");
- script_require_ports("Services/www", 80);
- exit(0);
- }
-
- #
- # The script code starts here
- #
-
- include("http_func.inc");
- include("http_keepalive.inc");
-
-
- port = get_http_port(default:80);
-
- if(!get_port_state(port))exit(0);
-
- foreach dir (cgi_dirs())
- {
- url = dir + "/sgdynamo.exe?HTNAME=sgdynamo.exe";
- req = http_get(item:url, port:port);
- resp = http_keepalive_send_recv(port:port, data:req);
- if ( resp == NULL ) exit(0);
- path = egrep(pattern:"[aA-zZ]:\\.*sgdynamo\.exe", string:resp);
- if (path) {
- path = ereg_replace(string:path, pattern:".*([aA-zZ]:\\.*sgdynamo\.exe).*", replace:"\1");
- report =
- "The CGI 'cgdynamo.exe' can be tricked into giving the physical path to the
- remote web root.
-
- We determined that the remote web path is : " + path + "
- This information may be useful to an attacker who can use it to make better
- attacks against the remote server.
-
- Solution : None at this time
- Risk factor : Low";
- security_warning(port:port, data:report);
- exit(0);
- }
- }
-